a9d93602c942c558ccd5f773da08e7594d585893,systests2/multi-bundle/src/test/java/org/apache/cxf/dosgi/systests2/multi/TestCustomIntent.java,TestCustomIntent,configure,#,76
Before Change
@Configuration
public static Option[] configure() throws Exception {
return new Option[] {
MultiBundleTools.getDistro(),
CoreOptions.junitBundles(),
systemProperty("org.ops4j.pax.logging.DefaultServiceLog.level").value("INFO"),
mavenBundle().groupId("org.apache.cxf.dosgi.samples")
.artifactId("cxf-dosgi-ri-samples-greeter-interface").versionAsInProject(),
streamBundle(getCustomIntentBundle()).noStart(),
provision(getServiceBundle()),
frameworkStartLevel(100) };
}
@Test
After Change
@Configuration
public static Option[] configure() throws Exception {
return new Option[] //
{
basicTestOptions(), //
greeterInterface(), //
streamBundle(getCustomIntentBundle()).noStart(), //
provision(getServiceBundle())
};
}
@Test